* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  /* Adds offset when scrolling (for fixed header) */
  scroll-snap-type: y proximity;
}

section {
  scroll-snap-align: start;
}

body {
  font-family: "Inter", sans-serif;
}

.navbar {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 93px;
  background-color: #000000 !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid #dc9f1a;
}

#mobilemenu {
  background-color: #000000;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: white !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #dc9f1a !important;
  text-decoration: underline #dc9f1a;
  text-underline-offset: 8px !important;
}

.navbar-nav .nav-item {
  margin-right: 20px !important;
}

.navbar .container-fluid {
  width: 95%;
  margin: 0 auto;
}

/* section-1*/

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}

.hero-section {
  position: relative;
  background-image: url("../images/vollers-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 95px;
  min-height: 700px;
  height: 100%;
  color: #ffffff;
  width: auto;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px !important;
  margin-left: -140px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  overflow: hidden;
}

.hero-sub {
  color: #ffde00 !important;
  /* Premium tech-yellow tint */
}

.btn-primary-custom {
  padding: 10px 18px !important;
  background-color: #fbca44;
  border: 2px solid #fbca44;
  font-family: "inter";
  font-size: 16px;
  /* Smaller font */
  font-weight: 500;
  border-radius: 10px;
  font-weight: 700;
  color: black;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;

  text-align: center;
  cursor: pointer;
}

.btn-primary-custom:hover {
  color: #000000;
  background-color: yellow;
  border: 2px solid yellow;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  padding: 10px 18px;
  background: transparent;
  border: 2px solid #fbca44;
  color: #fbca44;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}

.btn-secondary-custom:hover {
  color: #000000;
  background-color: #fbca44;
  border: 2px solid #fbca44;
  transform: translateY(-2px);
}

.btn-primary-custom,
.btn-secondary-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/*About section */

.about-section {
  background-image: url("../images/about-bacgkground.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  width: auto;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: "inter", sans-serif;
  font-size: 20px;
  color: #dc9f1a;
  font-weight: 600;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  color: #000000;
  font-weight: bold;
}

.about-section p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #000000;
}

.image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.about-img {
  width: 100%;
  height: auto;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  display: block;
}

.golden-overlay {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 150px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

/*drive section*/
.drives-section {
  background-color: #faca43;
  min-height: 600px;
  position: relative;
  padding: 50px 0;
}

.section-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

.drive-card {
  position: relative;

  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  width: auto;
  max-width: 280px;
  margin: 0 auto;
  overflow: hidden;
}

.card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  position: relative;
  z-index: 2;
  padding: 8px 12px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.circle-wrapper {
  width: 70px;
  height: 70px;
  position: relative;
  margin-top: 10px;
  flex-shrink: 0;
}

.circle-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.drive-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 21px;
  color: #000000;
  margin-top: 10px;
  line-height: 1.3;
  max-width: 140px;
  font-weight: 700;
}

.drive-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}

.quote-section {
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-top: 26px;
}

.quote-section h3:first-child {
  color: #000000;
  /* Black color */
  margin-bottom: 8px;
}

.quote-section h3:last-child {
  color: #ffffff;
}

/* components section*/
.components-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.components-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  margin-bottom: 40px;
  display: block;
}

.components-title h3 {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #dc9f1a;
}

.components-title h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
}

.components-title p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}

.component-card {
  background: white;
  border-radius: 16px;
  padding: 20px 0 20px 0;
  transition: all 0.3s ease;
  height: 100%;
  max-width: 280px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.component-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 8px;
  padding: 0 15px;
}

.component-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.component-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.title-wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  align-items: flex-start;
  text-align: left;
}

.component-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2c3e;
  white-space: nowrap;

  margin: 0;
}

.comp-divider {
  width: 40px;
  height: 2px;
  background: #d4a017;
  margin: 6px 0 0 0 !important;
  margin-top: 10px !important;
  border-radius: 2px;
}

.component-image {
  width: 100%;
  margin: 15px 0;
  overflow: hidden;
}

.component-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* List - with aligned bullets */
.component-list {
  list-style: none;
  padding: 0 6px;
  margin: 0;
  text-align: left;
}

.component-list li {
  font-size: 1rem;
  color: #6c757d;
  padding: 5px 4px;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.component-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4a017;
  border-radius: 50%;
  position: absolute;
  left: 4px;
  top: 12px;
  font-size: 1rem;
}

.btn-ternary-custom {
  padding: 10px 18px;
  background-color: black;
  border: 2px solid #faca43;
  color: #faca43;
  transition: all 0.3s ease;
  border-radius: 10px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  justify-content: space-between;
  gap: 12px;
}

.btn-ternary-custom:hover {
  color: #000000;
  background-color: #fbca44;
  border: 2px solid #fbca44;
  transform: translateY(-2px);
}

.section-divider {
  width: 800px;
  height: 2px;
  background-color: #faca43;
  border: none;
  opacity: 1;
  border-radius: 2px;
}

/*global-section*/
.global-section {
  background: #ffffff;
  padding: 50px 0;
}

.global-section h2 {
  font-size: 40px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #000000;
  margin-bottom: 15px;
}

.heading-divider {
  width: 120px;
  height: 3px;
  background-color: #ffd700;
  margin: 0 0 20px 0;
}

.global-section p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 15px;
}

.global-section h3 {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  color: #dc9f1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.timeline-wrapper {
  position: relative;
  padding: 40px;
  overflow: hidden;
}

.timeline-line {
  background: #b4b3b3;
  left: 20px;
  bottom: 100px;
  top: 80px;
  width: 2px;
}

.timeline-item {
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  background: #000000;
  top: 38px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 2;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  min-height: 80px;

  font-size: 30px;
  z-index: 2;
  margin-left: 10px;
  margin-right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.timeline-content h4 {
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 6px;
  line-height: 1.3;
}

.timeline-content p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 0;
}

.global-map {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.global-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* global cards*/
.cards-row {
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 20px;
  width: 100%;
  overflow: visible;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.card-item {
  flex: 1;
  display: flex;
  min-width: 160px;
  max-width: 100%;
  padding: 4px 28px;
  transition: all 0.3s ease;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffff;
}

.card-item:hover {
  transform: translateY(-5px);
}

.vertical-divider {
  width: 1px;
  height: 140px;
  align-self: center;
  background: #d9d9d9;
  margin: 20px 0;
  flex-shrink: 0;
}

.global-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.card-item h5 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
}

.card-item p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  color: #000000;
  line-height: 1.2;
  max-width: 100%;
  margin: 0 auto;
}

/*approcah-section*/

.approach-section {
  padding: 50px 0;
  background-image: url("../images/Approach-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.approach-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4) !important;
  z-index: 1;
}

.approach-section .container {
  position: relative;
  z-index: 2;
}

.approach-header {
  margin-bottom: 40px;
}

.approach-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 25px;
}

.approach-header p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  /* Add this - forces text to wrap */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.approach-card {
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid #ffd700;

  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.approach-card:hover {
  transform: translateY(-10px);
}

.card-number {
  margin-bottom: 15px;
}

.card-number img {
  width: 50px;
  /* Reduced from 80px */
  height: auto;
}

.square-box {
  width: 90px;
  height: 90px;

  margin: 0 auto 20px;
}

.square-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.approach-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.approach-card p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== MANUFACTURER PAGE ===== */
.manufacturer-section {
  padding: 50px 0;
  background: #ffffff;
}

.manufacturer-content {
  padding-top: 40px;
}

.manufacturer-header {
  margin-bottom: 30px;
  /* margin-top: 30px; */
}

.manufacturer-header h3 {
  font-family: "Inter" sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #dc9f1a;
  margin-bottom: 15px;
}

.manufacturer-header h2 {
  font-family: "Poppins";
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.manufacturer-header p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto !important;
}

.manufacturer-slider .slick-slide {
  padding: 0 0;
  /* SPACE BETWEEN LOGOS */
}

.manufacturer-logo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.manufacturer-slick img {
  width: 260px;
  margin: 0 auto;
  display: block;
}

/*vision section*/
.vision-section {
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
  background-color: #000000;
}

.vision-header {
  text-align: center;
  margin-bottom: 50px;
}

.vision-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.vision-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.vision-header p {
  font-size: 18px;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

.vision-timeline-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.vision-timeline-item:not(:last-child)::after {
  content: "------ ○ ------";
  position: absolute;
  top: 30px;
  left: 100%;
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
  white-space: nowrap;
  transform: translateX(-50%);
}

.timeline-dot {
  width: 120px;
  height: 120px;
  margin: 0 auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  background: transparent;
}

.timeline-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-timeline-item h4 {
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 15px;
  line-height: 1.3;
  word-wrap: break-word;
}

.vision-bottom-image {
  width: 100%;
  margin-top: 0;
}

.vision-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*industries section*/

.industries-section {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.industries-section .container {
  max-width: 1200px;
  position: relative;
}

.industries-header {
  margin-top: 10px;
  margin-bottom: 50px;
}

.industries-header h3 {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #dc9f1a;
  margin-bottom: 15px;
}

.industries-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
}

.industries-header p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.industries-swiper {
  width: 100%;
  padding: 20px 0 60px 0;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper-container {
  max-width: 1150px;
  position: relative;
  margin: 0 auto;
  padding: 0 60px;
}

.swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: stretch !important;
}

.industry-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  max-width: 225px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 90px;
  height: 90px;
  margin: 15px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: #000000;
  max-width: 120px;
  /* Limit width to force wrapping */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.card-divider {
  width: 40px;
  height: 2px;
  background: #d4a017;
  margin: 0 auto 5px;
  border-radius: 2px;
}

.industry-bottom-image {
  width: 100%;
  height: auto;
  margin-top: auto;
  overflow: hidden;
}

.industry-bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  position: relative !important;
  padding-top: 30px;
}

.industries-section .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d4a017;
  /* golden */
  opacity: 0.5;
  margin: 0 10px !important;
  /* gap between dots */
}

.industries-section .swiper-pagination-bullet-active {
  background: #d4a017;
  opacity: 1;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;

  top: 45% !important;
  color: #ffd700;
  background: #ffffff;
  width: 45px !important;
  height: 45px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 50% !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.swiper-button-prev {
  left: 15px !important;
  /* Floating centered in the 60px left padding */
}

.swiper-button-next {
  right: 15px !important;
  /* Floating centered in the 60px right padding */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700;
  color: #ffd700 !important;
}

/* Horizontal line below h4 */
.h4-divider {
  width: 50px;
  height: 2px;
  background-color: #ffd700;
  margin: 8px auto 15px auto;
}

.vision-timeline-item p {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;

  margin-bottom: 0;
  padding: 0 15px;
}

/* /*form section */
.form-section {
  background-image: url("../images/form-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.quote-left {
  margin-top: 20px;
  max-width: 425px;
  margin: 0 auto;
  text-align: left !important;
}

.quote-left h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 15px;
}

.quote-left h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

.quote-left p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

.form-container {
  background: #ffffff;
  border: 1px solid #f5d67a;
  border-radius: 16px;
  padding: 25px;
  box-shadow:
    0 0 12px rgba(251, 202, 68, 0.2),
    0 0 30px rgba(251, 202, 68, 0.1);
}

.form-header {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-header-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: #fbca44;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-header-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.form-header-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a2c3e;
  margin-bottom: 5px;
}

.form-header-text p {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 0;
}

.form-label {
  font-weight: 600;
  font-size: 0.75rem;
  color: #000000;
  margin-bottom: 4px;
}

.form-label span {
  color: #000000;
}

.form-control {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
}

.form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

textarea.form-control {
  resize: none;
}

.input-icon-wrapper {
  position: relative;
  width: 100%;
}

.input-icon-wrapper .form-control {
  padding-right: 35px;
}

.input-icon-wrapper .input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.file-upload-area {
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  padding: 10px 20px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.file-upload-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.file-upload-area i {
  font-size: 40px;
  color: #6c757d;
  flex-shrink: 0;
}

.file-upload-text {
  text-align: left;
}

.upload-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a2c3e;
  margin-bottom: 0;
}

.file-upload-text .main-text {
  font-size: 16px;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 0;
}

.file-upload-area .small-text {
  font-size: 12px;
  color: #6c757d;
}

.form-check-input {
  width: 16px;
  height: 16px;
}

.form-check-input:checked {
  background-color: #ffd700;
  border-color: #ffd700;
}

.form-check-input:focus {
  border-color: #ffd700;
  box-shadow: none;
}

.form-check-label {
  font-size: 0.8rem;
  color: #6c757d;
}

.form-check-label a {
  text-decoration: none;
  color: #000000;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.btn-submit {
  font-size: 16px;
  background-color: #000000;
  border: 2px solid #fbca44;
  color: white;
  padding: 10px 25px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #dc9f1a;
  border: 2px solid #dc9f1a;
  transform: translateY(2px);
}

.privacy-text {
  text-align: center;
  font-size: 0.7rem;
  color: #adb5bd;
  margin-top: 12px;
}

.error-message {
  font-size: 14px;
  color: #dc3545;
  display: block;
  margin-top: 4px;
}

.success-message {
  font-size: 0.8rem;
  color: #28a745;
  text-align: center;
  margin-top: 15px;
  padding: 10px;
  background: #d4edda;
  border-radius: 8px;
  display: none;
}

.g-3 {
  --bs-gutter-y: 0.8rem;
}

input[type="file"]::file-selector-button {
  display: none;
}

input[type="file"] {
  color: transparent;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0;
  width: 40px;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/*footer -section*/

.footer-section {
  background-color: #000000;
  padding: 50px 0;
}

.sect-95 {
  width: 90%;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: auto;
  height: auto;
}

.footer-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.heading-underline {
  width: 50px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: disc;
  padding-left: 40px;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li::marker {
  color: #ffd700;
}

.footer-links a {
  font-family: "Inter", sans-serif;
  color: #cccccc;
  font-weight: 400;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd700;
}

.footer-address {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.address-text {
  flex: 1;
}

.footer-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  /* Adjust this value to align with first line */
}

.footer-address strong {
  color: #ffffff;
  font-weight: 700;
  display: inline;
}

.footer-email {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-email i {
  color: #ffd700;
  flex-shrink: 0;
  line-height: 1.6;
}

.footer-email a {
  color: #cccccc;

  text-decoration: none;
}

.footer-email a:hover {
  color: #ffd700;
}

.stay-connected h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

/* Separate Divider */
.footer-divider {
  border-top: 1px solid #8b8b8b;
  margin: 20px 0 20px 0;
}

.copyright {
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.6;
  color: #cccccc;
  margin: 0;
}

.footer-bottom-links a:hover {
  color: #ffd700;
}

/* Manufacturer Page Styles */
.manufacturer-yellow {
  margin-top: 100px;
  height: 40px;
  background-color: #dc9f1a;
}

.manufacturer-page .manufacturer-header {
  padding-bottom: 25px;
}

.manufacturer-page .manufacturer-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  color: #000;
}

.manufacturer-page .manufacturer-header p {
  max-width: 100%;
}

.manufacturer-page .manufacturer-header a {
  color: #000000;
  text-decoration: none;
}

.manufacturer-group-section {
  scroll-margin-top: 170px;
  margin-bottom: 25px;
}

.group-header {
  background-color: #f4f4f4;
  border-left: 4px solid #dc9f1a;
  padding: 12px 8px;
  margin-bottom: 15px;
}

.group-header h3 {
  font-family: 'Poppins', sans-serif;
}

/* Breadcrumb header */
.manufacturer-page .manufacturer-header {
  padding: 24px 0 10px;
  margin-bottom: 0;
}

.manufacturer-page .manufacturer-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
}

.manufacturer-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #777777;
  margin: 0;
}

.manufacturer-header p a {
  color: #dc9f1a;
  text-decoration: none;
  font-weight: 500;
}

.manufacturer-header p a:hover {
  text-decoration: underline;
}

.manufacturer-header p .bi {
  font-size: 11px;
  color: #aaaaaa;
  margin: 0 4px;
}

/* Alphabet nav bar */
.alphabet-nav-bar {
  background-color: #f8f9fa;
  position: sticky;
  top: 112px;
  z-index: 100;
  border-bottom: 1px solid #e0e0e0;
  border-top: 1px solid #e0e0e0;
}

/* Alphabet nav list (ul/li) */
.alphabet-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.alphabet-nav-list li {
  margin: 0;
  padding: 0;
}

.alphabet-link {
  display: inline-block;
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-size: 15px;
}

.alphabet-link:hover,
.alphabet-link.active {
  color: #ffffff !important;
  background-color: #dc9f1a;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(220, 159, 26, 0.35);
}

/* Letter group section */
.manufacturer-group-section {
  scroll-margin-top: 180px;
  margin-bottom: 40px;
}

.group-header {
  padding: 15px;
  background-color: #f4f4f4;
  border-left: 4px solid #dc9f1a;
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
}

.group-header h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111111;
  margin: 0;
}

/* Manufacturer list (ul/li) */
.manufacturer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 3;
  column-gap: 30px;
}

@media (max-width: 768px) {
  .manufacturer-list {
    column-count: 2;
  }
}

@media (max-width: 480px) {
  .manufacturer-list {
    column-count: 1;
  }
}

.manufacturer-list li {
  break-inside: avoid;
  padding: 7px 0 7px 22px;
  position: relative;
}

.manufacturer-list li::before {
  content: "•";
  color: #dc9f1a;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 20px;
  line-height: 1;
}

.manufacturer-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.manufacturer-link:hover {
  color: #dc9f1a;
}

.manufacturer-list li:has(.and-more) {
  border-bottom: none;
}

.manufacturer-link.and-more {
  color: #dc9f1a;
  font-weight: 700;
}

.manufacturer-link.and-more:hover {
  color: #b87c10;
}

.file-upload-area.dragover {
  border-color: #fbca44 !important;
  background-color: #fffbeb !important;
}

.subcategory-title {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-decoration: underline dotted #000000;
  text-underline-offset: 6px;
  margin: 15px 0;
  display: inline-block;
}

.subcategory-wrapper {
  padding: 0 10px;
}

.navbar-toggler:focus,
.btn-close-white:focus {
  box-shadow: none;
}

.manufacturer-standard {
  padding: 20px 0 0;
}

.manufacturer-standard h3,
.manufacturer-cta h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #111111;
  margin-bottom: 10px;
}

.manufacturer-box,
.manufacturer-box-2 {
  background-color: #000;
  padding: 10px 0;
  border-radius: 0 4px 4px 0;
  margin: 10px 0 15px 0;
  border-left: 4px solid #dc9f1a;
}

.manufacturer-box h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #dc9f1a;
  text-align: center;
  margin: 0;
}

.manufacturer-box-2 {
  padding: 15px;
  min-height: 145px;
}

.manufacturer-box-2 h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #dc9f1a;
  margin: 0;
}

.manufacturer-box-2 h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 10px 0 10px;
}

.manufacturer-box-2 p {
  color: #fff;
  margin: 0;
}

.manufacturer-standard .group-header {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 25px;
}

.manufacturer-standard .group-header h3 {
  font-size: 18px;
}

.manufacturer-page .manufacturer-content {
  padding-top: 20px;
}

.manufacturer-cta {
  margin: 15px 0 30px;
  background-color: #f4f4f4;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.manufacturer-cta p {
  width: 70%;
  margin: 0 auto 16px;
}